home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Taifun / Taifun 029 (1987-08-15)(Ossowski, Stefan)(DE)(PD).zip / Taifun 029 (1987-08-15)(Ossowski, Stefan)(DE)(PD).adf / ue18 / demo < prev    next >
Text File  |  1978-08-10  |  4KB  |  110 lines

  1.                 **** Some of  Uedit V1.8's Features  ****
  2.  
  3.        + Edit 20 files at once (or up to 55, if you sacrifice all buffers).
  4.        + 8 megabytes per file (or to the limit of memory).
  5.        + Cut/paste/copy with separate hilited/inverted regions in 55 buffers.
  6.        + Undo accidental deletes.
  7.        + Forward and backward searching and replacing, case sensitive or non.
  8.        + Wildcard and either/or in search-strings.
  9.        + 3-keystroke sequence swaps function-keys anytime.
  10.        + Every Menu, item, gadget, key, mouse function customizable.
  11.        + Up to 5 menus, up to 20 items each.
  12.        + Save or recover editor configuration anytime.
  13.        + Program it to do things automatically at start-up.
  14.        + Learn 100 inputs - keys, gadgets, mouse-clicks, menu selections.
  15.        + Do a mail-merge or auto-edit a list of documents using Learn Mode.
  16.        + Save & load learned sequences.
  17.        + Execute DOS commands, getting results optionally.
  18.        + Get directory listings - click-load files from directory lists.
  19.        + Sleeps so other tasks run fast.
  20.        + Print hilited region (through Preferences or straight to printer).
  21.        + Speak hilited region and error messages.
  22.        + Close Box is programmable, 8 in all using shift keys.
  23.        + 4 invisible "gadgets" in message line, programmable, 32 in all.
  24.        + Auto-indent, auto-backup, word-wrap, right-justify, reformatting etc.
  25.        + Click Title Bar for tiny window for access to CLI and icons.
  26.  
  27. <shftAlt-1:    moveCursor(curFile,sFile)
  28.            freeBuf(buf54)
  29.            insertRgn(buf54,sFile,"<",all)
  30.            while (search(curFile,locA,locB,buf54,eChar)) {
  31.                swapChar(curFile," ")
  32.                compile
  33.                putMsg(" ")
  34.                moveCursor(curFile,sFile)
  35.            }
  36.            putMsg(" ")
  37.            do (n54,0,19) if (not isEmpty(buf[n54])) freeBuf(curFile)
  38.            runKey(shftAlt-2)
  39.            runKey(shftAlt-3)
  40.            >
  41. <shftAlt-2:
  42. loadFile("demo")
  43. flipFlag(curFile,readOnly)
  44. toggle(curFile)
  45. freeBuf(curFile)
  46. speak("Hi there,  I am You Edit, an extremely powerful text editurr, for the Amiga")
  47. speak("I don't believe any other microcomputer, has an editurr quite like mee")
  48. toggle(curFile)
  49. speak("I can edit up to twenty files at once, but that is just the beginning")
  50. speak("You can make, powerful commands for me, and define, my menues, completely")
  51. speak("You can program me, to load your files, and do big things, automatically")
  52. runKey(normal-help)
  53. speak("This is my Helpp file, press the Helpp key, and see it, any time")
  54. while (vScroll(ePage)) refreshDisplay
  55. runKey(normal-help)
  56. toggle(curFile)
  57. moveCursor(curFile,ePage)
  58. do (n54,1,4) moveCursor(curFile,sLine)
  59. equateLoc(curFile,eInvert,atCursor)
  60. do (n54,1,12) {
  61.    moveCursor(curFile,sLine)
  62.    if (eqNum(n54,4)) equateLoc(curFile,sInvert,atCursor)
  63.    if (eqNum(n54,8)) equateLoc(curFile,eHilite,atCursor)
  64. }
  65. equateLoc(curFile,sHilite,atCursor)
  66. refreshDisplay
  67. speak("You can select, from twenty four, color combinations, and save it for next time")
  68. do (n54,1,3) toggle(color)
  69. putMsg(" ")
  70. equateLoc(curFile,atCursor,sInvert)
  71. flipFlag(curFile,readOnly)
  72. runKey(ctl-kpMinus)
  73. refreshDisplay
  74. runKey(ctl-kpEnter)
  75. refreshDisplay
  76. equateLoc(curFile,atCursor,sHilite)
  77. runKey(normal-kpMinus)
  78. refreshDisplay
  79. runKey(normal-kpEnter)
  80. refreshDisplay
  81. flipFlag(curFile,readOnly)
  82. speak("You can read about, my advanced features")
  83. speak("But I am easy to use, and very powerful, using just my menues, and Helpp file")
  84. >
  85.  
  86. <shftAlt-3:
  87. do (n54,0,19) if (not isEmpty(curFile)) freeBuf(curFile)
  88. insertRgn(curFile,sFile,
  89. "
  90.                                  Try me!
  91.  
  92.             Use the right mouse-button to check out my menus.
  93.  
  94.                        Press the Help-key for help.
  95.  
  96.                     Press it again to get rid of Help.
  97.  
  98.                 Click the Title Bar and see what happens.
  99.  
  100.             Press the CTRL-key and CLICK on these file names:
  101.                       (Press F1 to come back here.)
  102.  
  103.           Help!    Config!    demo   Uedit-ReadMe   Manual.table
  104. ",all)
  105. vScroll(sFile)
  106. refreshDisplay
  107. loadConfig("Data!")
  108. >
  109.  
  110.